import React from "react"; import { GlobalProps } from "../../utilities/globalProps"; declare type LightboxHeaderProps = { aria?: { [key: string]: string; }; children?: React.ReactNode[] | React.ReactNode | string; className?: string; closeable?: boolean; data?: { [key: string]: string | number; }; icon?: string; id?: string; onClickRight?: () => void; onClose?: () => void; text?: string; navRight?: string; title?: string; } & GlobalProps; declare const LightboxHeader: (props: LightboxHeaderProps) => React.ReactElement; export default LightboxHeader;