@cfxjs/react-ui
Version:
Modern and minimalist React UI library.
19 lines (18 loc) • 764 B
TypeScript
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<React.HTMLAttributes<any>, keyof Props>;
export declare type FieldsetFooterProps = Props & typeof defaultProps & NativeAttrs;
declare type FieldsetFooterComponent<P = {}> = React.FC<P> & {
Status: typeof FieldsetFooterStatus;
Actions: typeof FieldsetFooterActions;
};
declare type ComponentProps = Partial<typeof defaultProps> & Omit<Props, keyof typeof defaultProps> & NativeAttrs;
declare const _default: FieldsetFooterComponent<ComponentProps>;
export default _default;