export type ExposedProp = { key: string; options: T; }; export declare const getExposedProperties: (target: Record) => ExposedProp[]; /** * Indicates that a class member function can be exposed using {@link ApiExposer}. * @param options Options specific to the strategy used in {@link ApiExposer} */ export declare const expose: (options?: T) => any;