import type { L10nEngine } from '../locale'; import { type FieldWrapper, type Period } from '../types'; import { type Ref } from 'vue'; export interface FieldOptions { l10n: L10nEngine; period: Ref; field: FieldWrapper; initialCron?: string; } export declare function useCronSegment(options: FieldOptions): { id: string; items: import('../types').FieldItem[]; cron: Ref; selected: Ref; error: Ref; select: (evt: number[]) => void; text: Ref; prefix: Ref; suffix: Ref; }; export type UseCronSegmentReturn = ReturnType; //# sourceMappingURL=cron-segment.d.ts.map