/** * Subtle repeating SVG pattern tinted by the palette's foreground color. */ export interface FormBackgroundPattern { /** Which built-in pattern to render. */ preset: FormBackgroundPattern.Preset; } export declare namespace FormBackgroundPattern { /** Which built-in pattern to render. */ const Preset: { readonly Noise: "noise"; readonly Dots: "dots"; readonly Mesh: "mesh"; readonly Grid: "grid"; readonly Waves: "waves"; readonly Topo: "topo"; }; type Preset = (typeof Preset)[keyof typeof Preset]; }