declare const validOptions: readonly ["create", "update", "where", "orderBy"]; type Omit = (typeof validOptions)[number]; type OmitType = 'all' | Omit[]; export declare function parseComment(comment: string): OmitType | null; export {};