/** * Objects extend this interface to allow to take modifiers as boolean props. * Then can declare components like so * * `` * * Error will be thrown if try to specify multiple access modifiers */ export interface ModifierProps { public?: boolean; protected?: boolean; private?: boolean; default?: boolean; static?: boolean; final?: boolean; synchronized?: boolean; abstract?: boolean; native?: boolean; strictfp?: boolean; transient?: boolean; volatile?: boolean; } /** * Renders the modifiers based on the provided props. **/ export declare function Modifiers(props: ModifierProps): import("@alloy-js/core").Children; //# sourceMappingURL=Modifiers.d.ts.map