/** * Props for the gallery close button. */ interface CloseButtonProps { onPress?: () => void; light?: boolean; } /** * Renders the icon button used to close the gallery modal. */ declare function CloseButton({ onPress, light: _light }: CloseButtonProps): import("react/jsx-runtime").JSX.Element; export { CloseButton }; /** * @deprecated Use named import instead: `import { CloseButton } from './close-button'`. * Default export will be removed in the next major version. */ export default CloseButton;