import { ReactNode, default as React, HTMLAttributes } from 'react'; import { IconButtonProps } from '../../'; export interface SlideOverHeaderProps extends Omit, 'title'> { /** * A react component to be used as the title in the header. */ children?: ReactNode; /** * Props for the Close Button component. */ closeBtnProps?: Partial>; /** * Function called when Close Button is clicked. */ onClose: () => void; } declare const SlideOverHeader: ({ children, closeBtnProps, onClose, ...otherProps }: SlideOverHeaderProps) => React.JSX.Element; export default SlideOverHeader; //# sourceMappingURL=SlideOverHeader.d.ts.map