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