import * as React from 'react'; /** * NB: Do not change the docs (comments) in here. The docs are updated during build time by "generateTypes.js" and "fetchPropertiesFromDocs.js". */ export interface AllComponentsProps extends React.HTMLProps { horizontal?: boolean; vertical?: boolean; showText?: boolean; hideLabel?: boolean; } declare const AllComponents: React.FC; export default AllComponents;