import { StoryObj } from '@storybook/html';
import { SashProps } from './Sash';
declare const meta: {
    title: string;
    render: (args: SashProps) => DocumentFragment;
    argTypes: {
        type: {
            options: ("vertical" | "horizontal" | "edge")[];
            control: string;
        };
        cursor: {
            options: ("default" | "ew-resize" | "ns-resize" | "nesw-resize" | "nwse-resize")[];
            control: string;
        };
        top: {
            control: string;
        };
        left: {
            control: string;
        };
        onMove: {
            action: string;
        };
    };
};
export default meta;
type Story = StoryObj<SashProps>;
export declare const Vertical: Story;
export declare const Horizontal: Story;
export declare const Edge: Story;
