import React from 'react'; export declare type TabProps = { /** Whether to apply bordered styles. */ bordered?: boolean; /** Whether the column is expanded. */ expanded?: boolean; /** Tab's position relative to the column: `after` tab is on the right for a left column (default); `before` tab is on the left for a right column. */ position?: 'before' | 'after'; /** Callback when column is toggled. */ onCollapseToggle: React.DOMAttributes['onClick']; }; /** A tab for toggling an aside. */ export default function Tab({ bordered, expanded, position, onCollapseToggle, }: TabProps): JSX.Element; //# sourceMappingURL=Tab.d.ts.map