export declare const ERRORS: { NOT_AUTHENTICATED: string; FILE_NOT_FOUND: (file: string) => string; AUTHENTICATION_FAILED: string; SEARCH_FAILED: string; CLONE_FAILED: string; PUSH_FAILED: string; UPDATE_FAILED: string; TOKEN_EMPTY: string; NAME_REQUIRED: string; DESCRIPTION_REQUIRED: string; NAME_TOO_LONG: string; DESCRIPTION_TOO_LONG: string; CONTENT_TOO_LARGE: string; INVALID_FILE_EXTENSION: (file: string) => string; }; export declare const URLS: { PROMPTS: (id: string) => string; TOKEN_SETTINGS: string; BASE_URL: string; }; export declare const SUPABASE: { URL: string; ANON_KEY: string; }; export declare const MESSAGES: { USING_EXISTING_AUTH: string; AUTH_SUCCESS: string; PROMPT_PUSHED: string; PROMPT_UPDATED: string; PROMPT_CLONED: string; WELCOME: (username: string) => string; TOKEN_SAVED: string; NO_PROMPTS_FOUND: string; REAUTH_PROMPT: string; }; export declare const TIPS: { CLONE: (id: string) => string; PUSH: (file: string) => string; CLONE_GENERAL: string; PUSH_UPDATE: (output: string, id: string) => string; GET_TOKEN: string[]; }; export declare const LIMITS: { MAX_NAME_LENGTH: number; MAX_DESCRIPTION_LENGTH: number; MAX_CONTENT_SIZE: number; MAX_TAG_LENGTH: number; MAX_TAGS_COUNT: number; DEFAULT_SEARCH_LIMIT: number; API_TIMEOUT: number; RETRY_ATTEMPTS: number; RETRY_DELAY: number; }; //# sourceMappingURL=constants.d.ts.map