import { type ViewStyle } from "react-native"; import { type ColorTokens } from "../../style/index.js"; export interface DashboardGridSkin { /** Space between cells on both axes, in px; the density axis tightens it. */ gap: (compact: boolean) => number; /** The customize-mode cell affordance: a dashed ring around the widget's own surface. */ editCell: (t: ColorTokens) => ViewStyle; /** The grip row above the widget content while unlocked. */ gripRow: ViewStyle; } export declare const webSkin: DashboardGridSkin; export declare const iosSkin: DashboardGridSkin; export declare const androidSkin: DashboardGridSkin; //# sourceMappingURL=dashboard-grid.styles.d.ts.map