export interface DescriptionLine { icon: JSX.Element; text: string; } export interface Props { botEmail: string; descriptionLines: DescriptionLine[]; title: string; style?: React.CSSProperties; onCancelClick: () => void; } export declare function InvoiceViaEmailPopup(props: Props): import("react/jsx-runtime").JSX.Element;