/// import { MarginTypes } from '../../Style/Margin'; export interface StyledProps extends MarginTypes { /** * current element id * @defaultValue "" * @optional * @type string */ id?: React.HtmlHTMLAttributes["id"]; /** * The component orientation. * @defaultValue "horizontal" * * @privateRemarks * * The `@privateRemarks` tag starts a block of additional commentary that is not meant * for an external audience. A documentation tool must omit this content from an * API reference web site. It should also be omitted when generating a normalized * *.d.ts file. */ direction?: "horizontal" | "vertical"; } declare const ThemedComponent: (props: StyledProps) => import("react/jsx-runtime").JSX.Element; export default ThemedComponent; //# sourceMappingURL=Styled.d.ts.map