///
import { StackProps } from '@mui/material/Stack';
export interface StyledProps extends StackProps {
/**
* current element id
* @defaultValue ""
* @optional
* @type string
*/
id?: React.HtmlHTMLAttributes["id"];
/**
* Defines the `flex-direction` style property.
* It is applied for all screen sizes.
* @default 'column'
*/
direction?: "row" | "row-reverse" | "column" | "column-reverse";
/**
* Not Used
*/
sx?: never;
}
declare const ThemedComponent: (props: StyledProps) => import("react/jsx-runtime").JSX.Element;
export default ThemedComponent;
//# sourceMappingURL=Styled.d.ts.map