13 lines
295 B
TypeScript
13 lines
295 B
TypeScript
import * as React from 'react';
|
|
|
|
import { StandardProps } from '../@types/common';
|
|
|
|
export interface ModalFooterProps extends StandardProps {
|
|
/** Primary content */
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
declare const ModalFooter: React.ComponentType<ModalFooterProps>;
|
|
|
|
export default ModalFooter;
|