import React from 'react'; type TOverlay = { close: () => void; }; type TWidth = '0' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl' | '7l'; interface ISlideOverKitProps { disableBackdrop?: boolean; CloseIcon?: React.ReactElement; disableCloseIcon?: boolean; width?: TWidth; open?: boolean; onOpen?: () => void; onClose?: () => void; withBanner?: boolean; withStickyFooter?: boolean; withStickyFooterText?: { cancel?: string; submit?: string; }; withStickyFooterHandlers?: { cancel?: (arg: TOverlay) => void; submit?: (arg: TOverlay) => void; }; title?: React.ReactNode; description?: React.ReactNode; children?: ((arg: TOverlay) => React.ReactNode) | React.ReactNode; classes?: Partial>; anchor?: 'right' | 'bottom' | 'left' | 'top'; disableGutter?: boolean; } declare const SlideOverKit: React.FC; export default SlideOverKit; //# sourceMappingURL=index.d.ts.map