import { type StyledComponent } from '@emotion/styled';
import type { Theme } from '@emotion/react';
import type { DetailedHTMLProps, HTMLAttributes } from 'react';
export interface MentionPickerStyleProps {
    visible?: boolean | string;
}
export declare const MentionPickerStyle: StyledComponent<{
    theme?: Theme;
    as?: React.ElementType;
} & MentionPickerStyleProps, DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
export declare const MentionPickerInfoStyle: StyledComponent<{
    theme?: Theme;
    as?: React.ElementType;
}, DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
