import { PartialBy } from '../../../type-utils'; import { OptionProducer, ValueDefault, ValueRef } from '../../types/options'; type RedundantKeys = 'type' | 'key' | 'label'; type Attributes = PartialBy, 'value'> | Omit; export declare const pageVariable: (label: string, attrs?: Attributes) => OptionProducer; export {};