mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 07:30:02 +00:00
9 lines
473 B
TypeScript
9 lines
473 B
TypeScript
import React from 'react';
|
|
export declare type ButtonTranslations = Partial<{
|
|
buttonText: string;
|
|
buttonAriaLabel: string;
|
|
}>;
|
|
export declare type DocSearchButtonProps = React.ComponentProps<'button'> & {
|
|
translations?: ButtonTranslations;
|
|
};
|
|
export declare const DocSearchButton: React.ForwardRefExoticComponent<Pick<DocSearchButtonProps, "translations" | "key" | keyof React.ButtonHTMLAttributes<HTMLButtonElement>> & React.RefAttributes<HTMLButtonElement>>;
|