import React from 'react'; import PropTypes from 'prop-types'; declare const States: { ({ children, size }: { children: any; size: any; }): React.JSX.Element; propTypes: { children: PropTypes.Validator>; size: PropTypes.Requireable; }; defaultProps: { size: string; }; Image: { ({ src, alt }: { src: any; alt: any; }): React.JSX.Element; propTypes: { src: PropTypes.Validator; alt: PropTypes.Validator; }; defaultProps: {}; }; Media: { ({ children }: { children: any; }): React.JSX.Element; propTypes: { children: PropTypes.Validator>; }; defaultProps: {}; }; Header: { ({ children }: { children: any; }): React.JSX.Element; propTypes: { children: PropTypes.Validator>; }; defaultProps: {}; }; Description: { ({ children }: { children: any; }): React.JSX.Element; propTypes: { children: PropTypes.Validator>; }; defaultProps: {}; }; Buttons: { ({ children }: { children: any; }): React.JSX.Element; propTypes: { children: PropTypes.Validator>; }; defaultProps: {}; }; }; export default States; //# sourceMappingURL=States.d.ts.map