import { IMessageInput } from '../MessageInput'; import { RefObject } from 'react'; export interface INewFooter { buttons?: { label: string; onClick: () => void; }[]; showPoweredBy?: boolean; messageInputProps: IMessageInput; extraLinkText?: string; extraLinkUrl?: string; scrollableAreaRef: RefObject; /** * A callback to submit a user response. */ onSend?: ((message: string) => Promise) | undefined; /** * A callback to start a new conversation. */ onStart?: (() => Promise) | undefined; } export declare const NewFooter: React.FC; //# sourceMappingURL=index.d.ts.map