import type { ReactNode } from 'react'; import type { ContainerProps } from '@toptal/picasso-container'; export interface Props extends Omit { /** Content */ children: ReactNode; } declare const FormActionsContainer: ({ children, style, ...rest }: Props) => JSX.Element; export default FormActionsContainer; //# sourceMappingURL=FormActionsContainer.d.ts.map