import { PageSelectOption } from '../PageInputs/PageSelectOption'; export interface IPageSettingsOption { name: string; label: string; helpText: string; options: PageSelectOption[]; defaultValue: string | number; } export declare function usePageSettingsOptions(): IPageSettingsOption[];