import type { ExtractPropTypes, PropType, StyleValue } from 'vue'; import type _Page from './page.vue'; export declare const sdPageProps: { readonly lockScroll: { readonly type: BooleanConstructor; readonly default: false; }; readonly title: { readonly type: StringConstructor; }; readonly showHead: { readonly type: BooleanConstructor; }; readonly headClass: { readonly type: StringConstructor; }; readonly headStyle: { readonly type: PropType; }; readonly bodyClass: { readonly type: StringConstructor; }; readonly bodyStyle: { readonly type: PropType; }; }; export declare type SdPageProps = ExtractPropTypes; export declare type SdPageInstance = InstanceType;