import * as React from 'react'; import { Pressable } from 'react-native'; import type { ZestUIComponentProps } from '../../types'; /** * A button that closes the dialog. * Renders a ``. */ export declare function DialogClose(componentProps: DialogClose.Props): React.ReactElement>; export interface DialogCloseState { /** * Whether the component should ignore user interaction. */ disabled: boolean; /** * Whether the close button is currently pressed. */ pressed: boolean; } export interface DialogCloseProps extends ZestUIComponentProps { /** * Whether the component should ignore user interaction. * @default false */ disabled?: boolean | undefined; } export declare namespace DialogClose { type State = DialogCloseState; type Props = DialogCloseProps; } //# sourceMappingURL=DialogClose.d.ts.map