import React from "react"; export interface GlassBottomSheetProps { open: boolean; onOpenChange: (open: boolean) => void; children: React.ReactNode; height?: number | string; className?: string; /** * Accessible title for the bottom sheet */ title?: string; /** * Accessible description for the bottom sheet */ description?: string; /** * Whether to respect motion preferences */ respectMotionPreference?: boolean; /** * Custom aria-label */ "aria-label"?: string; /** * Custom aria-labelledby */ "aria-labelledby"?: string; /** * Custom aria-describedby */ "aria-describedby"?: string; /** * Testing attribute */ "data-testid"?: string; /** * Material system to use for the sheet surface. */ material?: "glass" | "liquid"; /** * Liquid material variant. */ materialVariant?: "regular" | "clear"; /** * Presentation mode for liquid sheets. */ presentationMode?: "interruptive" | "parallel"; /** * Source id for Liquid Glass source transitions. */ sourceId?: string; } export declare const GlassBottomSheet: React.ForwardRefExoticComponent>; export default GlassBottomSheet; //# sourceMappingURL=GlassBottomSheet.d.ts.map