import React from 'react'; import FieldsetFooterStatus from './fieldset-footer-status'; import FieldsetFooterActions from './fieldset-footer-actions'; interface Props { className?: string; } declare const defaultProps: { className: string; }; declare type NativeAttrs = Omit, keyof Props>; export declare type FieldsetFooterProps = Props & typeof defaultProps & NativeAttrs; declare type FieldsetFooterComponent

= React.FC

& { Status: typeof FieldsetFooterStatus; Actions: typeof FieldsetFooterActions; }; declare type ComponentProps = Partial & Omit & NativeAttrs; declare const _default: FieldsetFooterComponent; export default _default;