import type { HTMLProps, FunctionComponent } from 'react'; export interface ChatbotFooterProps extends HTMLProps { /** Children for the footer - supports MessageBar and FootNote components*/ children?: React.ReactNode; /** Custom classname for the footer component */ className?: string; /** Sets footer to compact styling. */ isCompact?: boolean; /** Sets background color to primary */ isPrimary?: boolean; } export declare const ChatbotFooter: FunctionComponent; export default ChatbotFooter;