import * as React from 'react'; export interface Props { /** * Component's HTML Element * * @default 'div' */ component?: string | React.ComponentType; /** * Allows to open/close Action Sheet and set its initial state * * @default false */ opened?: boolean; /** * Enables Action Sheet backdrop (dark semi transparent layer behind) * * @default true */ backdrop?: boolean; /** * Click handler on backdrop element */ onBackdropClick?: (e: any) => void; } // @ts-ignore interface ActionsProps extends Omit, keyof Props>, Props { ref?: React.Ref; } declare const Actions: React.ComponentType; export default Actions;