/** * The `@api` decorator marks public fields and public methods in * LWC Components. This function implements the internals of this * decorator. */ export default function api(value: unknown, context: ClassMemberDecoratorContext): void; export declare function createPublicPropertyDescriptor(key: string): PropertyDescriptor; export declare function createPublicAccessorDescriptor(key: PropertyKey, descriptor: PropertyDescriptor): PropertyDescriptor; //# sourceMappingURL=api.d.ts.map