export namespace generalStyles { const width: string; const height: string; const padding: string; } export namespace containerStyles { const margin: string; } export namespace layoutStyle { export const display: string; export const flexDirection: string; export const justifyContent: string; export const alignItems: string; const margin_1: string; export { margin_1 as margin }; } export namespace labelStyle { const fontSize: number; const marginBottom: number; const fontFamily: string; const color: string; } export function Example(props: any): JSX.Element; export namespace Example { namespace propTypes { const label: PropTypes.Requireable; const children: PropTypes.Requireable; } } export function Headers(): JSX.Element; export function Typesetting({ isInverted }: { isInverted: any; }): JSX.Element; export namespace Typesetting { export namespace propTypes_1 { const isInverted: PropTypes.Requireable; } export { propTypes_1 as propTypes }; } import PropTypes from "prop-types";