import { SvelteComponentTyped } from "svelte"; export declare const ROW_CONTEXT_ID = "row-context-id"; export declare function useRowContext(component: string): unknown; import type TwSizes from '../../types/twSizes'; import { type ActionArray } from '../../utils/useActions'; declare const __propDef: { props: { [x: string]: any; use?: ActionArray | undefined; gutter?: TwSizes | [TwSizes, TwSizes] | undefined; justify?: undefined | 'start' | 'center' | 'end' | 'between' | 'around'; align?: "start" | "center" | "end" | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type RowProps = typeof __propDef.props; export declare type RowEvents = typeof __propDef.events; export declare type RowSlots = typeof __propDef.slots; export default class Row extends SvelteComponentTyped { } export {};