import { SwipeProps } from "../../../hooks/useSwipe";
export interface Row {
    children?: any;
    title?: string;
    style?: object;
    gap?: number;
    change?: string | false;
    align?: "left" | "center" | "middle" | "right" | "stretch";
    show?: "desktop" | "laptop" | "tablet" | "mobile";
    hide?: "desktop" | "laptop" | "tablet" | "mobile";
    responsive?: "desktop" | "laptop" | "tablet" | "mobile";
    reverse?: boolean;
    fill?: boolean;
    fit?: boolean;
    fix?: boolean;
    swipe?: SwipeProps;
    layout?: boolean | "position" | "size" | "preserve-aspect";
}
export default function Row(props: Row): import("react").JSX.Element;
//# sourceMappingURL=Row.d.ts.map