import { ValueOf } from '../enum-values'; export declare class FeedbackStatusEnumValue { static key: string; static types: { submitted: string; replied: string; resolved: string; }; static get keys(): string[]; static get data(): { [key in keyof typeof FeedbackStatusEnumValue.types]: string; }; } export declare type FeedbackStatusType = ValueOf; export declare class FeedbackSenderEnumValue { static key: string; static types: { user: string; admin: string; }; static get keys(): string[]; static get data(): { [key in keyof typeof FeedbackSenderEnumValue.types]: string; }; } export declare type FeedbackSenderType = ValueOf;