export interface PropertyNameProps { /** * The name of the property. */ name?: string; /** * Whether the property is a private property. If `true`, the property will be * prefixed with `#`. */ private?: boolean; } /** * A TypeScript property name for an interface, class, or object member. If the * name is not a valid JavaScript identifier, it will be quoted. If a `name` prop * is provided, it will be used as the property name. Otherwise, the name will be * taken from the {@link (MemberDeclarationContext:variable)}. */ export declare function PropertyName(props: PropertyNameProps): import("@alloy-js/core").Children; //# sourceMappingURL=PropertyName.d.ts.map