import React from 'react'; export interface ControlSlots { startSlot?: React.ReactNode; middleSlot?: React.ReactNode; endSlot?: React.ReactNode; } export interface SlotProps { className?: string; children?: React.ReactNode; } export interface InnerSideSlotProps extends SlotProps { interactive?: boolean; icon?: boolean; } export declare function BeforeSlot(props: SlotProps): JSX.Element; export declare function StartSlot(props: InnerSideSlotProps): JSX.Element; export declare function MiddleSlot(props: SlotProps): JSX.Element; export declare function EndSlot(props: InnerSideSlotProps): JSX.Element; export declare function AfterSlot(props: SlotProps): JSX.Element;