import type { AgPageLayoutState } from './state/agPageLayoutState'; import type { AgForm, AgFormControlItem } from './util/form'; export type AgLayoutKey = keyof Required; export type AgPageSetupFormItemControl = AgFormControlItem; /** * @deprecated v1.1 Use the `page` property with `AgPageConfig` to customise the page setup form. */ export type AgPageSetupConfig = AgForm; export interface AgPageConfig { setupForm: AgForm; }