import { CustomModalLayoutProps, ModalProps, TableActionCellSecondaryAction } from '@wix/design-system'; import React from 'react'; import { ConditionalModalState } from '@wix/bex-core'; export interface CustomActionModalProps extends Partial { state: ConditionalModalState; onAfterClose?: ModalProps['onAfterClose']; actionProps?: Partial; /** z-index of the modal overlay, forwarded to the underlying WDS `Modal`. */ zIndex?: ModalProps['zIndex']; } declare function _CustomActionModal({ state, content, onAfterClose, primaryButtonOnClick, secondaryButtonOnClick, onCloseButtonClick, zIndex, ...rest }: CustomActionModalProps): React.JSX.Element; export declare const CustomActionModal: typeof _CustomActionModal & { displayName: string; }; export {}; //# sourceMappingURL=CustomActionModal.d.ts.map