import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { /** * controls the alignment of the flexbox, defaults to a row */ direction?: "column" | "row" | undefined; /** * controls the flexbox alignment */ alignment?: string | undefined; /** * reverses the flex direction */ reverse?: boolean | undefined; /** * make a column full width */ fillWidth?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type ContentContainerProps = typeof __propDef.props; export type ContentContainerEvents = typeof __propDef.events; export type ContentContainerSlots = typeof __propDef.slots; /** * ContentContainer * * Used for creating a row or column layout * * Props: * - direction ("row"|"column"): controls the alignment of the flexbox, defaults to a row * - alignment (string): controls the flexbox alignment * - reverse (boolean): reverses the flex direction * - fillWidth (boolean): make a column full width * * Slots: * - default: contents of the ContentContainer * * Css Variables: * - contentContainerPaddingx (default:1rem) * - contentContainerPaddingy (default:0rem) * - contentContainerPaddingGap (default:0rem) */ export default class ContentContainer extends SvelteComponentTyped { } export {};