export default Spacer; type Spacer = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** A content divider with no line. It can be flexible. */ declare const Spacer: import("svelte").Component<{ /** * The `class` attribute on the wrapper element. */ class?: string | undefined; /** * Whether to make the spacer flexible. */ flex?: boolean | undefined; } & Record, {}, "">; type Props = { /** * The `class` attribute on the wrapper element. */ class?: string | undefined; /** * Whether to make the spacer flexible. */ flex?: boolean | undefined; };