import { ButtonProps } from '../button/button'; import { ModalProps, ModalProviderProps } from '../modal'; export interface FeedbackProps extends Pick { /** * Props that get passed to the trigger button */ triggerProps?: ButtonProps; /** * ModalProvider props */ providerProps?: Omit; /** * Modal props */ modalProps?: Omit; /** * Fix trigger on the right side of the screen. * @default desktop */ fixedTrigger?: 'both' | 'desktop' | 'mobile'; /** * Additional class */ className?: string; } export declare const Feedback: ({ children, triggerProps, providerProps, modalProps, fixedTrigger, className, ...rest }: FeedbackProps) => JSX.Element; export default Feedback;