import * as React from 'react'; import { TSaraStates, TBaseHtmlProps } from "../common.type"; export interface SaraProps extends TBaseHtmlProps { size?: number; state?: TSaraStates; alt?: string; onClick?: (event: React.MouseEvent) => void; className?: string; 'data-test'?: string; } export declare const Sara: { (props: SaraProps): React.JSX.Element; defaultProps: { size: number; state: string; }; }; export default Sara;