import { PropType } from 'vue'; type WithType = 'one' | 'two' | 'both' | 'none'; declare const props: { withFlex: { type: PropType; default: string; }; withOverflow: { type: PropType; default: string; }; overflow: { type: StringConstructor; default: string; }; flex: { type: StringConstructor; default: string; }; direction: { type: StringConstructor; default: string; }; gap: { type: StringConstructor; default: string; }; }; export default props;