import { UseScrollSpyHeadingData, UseScrollSpyOptions } from '@mantine/hooks';
import { BoxProps, ElementProps, Factory, MantineColor, MantineRadius, MantineSize, StylesApiProps } from '../../core';
import { UnstyledButtonProps } from '../UnstyledButton';
export type TableOfContentsStylesNames = 'root' | 'control';
export type TableOfContentsVariant = 'filled' | 'light' | 'none';
export type TableOfContentsCssVariables = {
    root: '--toc-bg' | '--toc-color' | '--toc-size' | '--toc-depth-offset' | '--toc-radius';
};
export interface InitialTableOfContentsData {
    /** Heading depth, 1-6 */
    depth: number;
    /** Heading text content value */
    value: string;
    /** Heading id, must be unique, used as `key` */
    id?: string;
}
export interface TableOfContentsGetControlPropsPayload {
    /** True if the associated heading is currently the best match in the viewport */
    active: boolean;
    /** Data passed down from `use-scroll-spy` hook: depth, id, value */
    data: UseScrollSpyHeadingData;
}
export interface TableOfContentsProps extends BoxProps, StylesApiProps<TableOfContentsFactory>, ElementProps<'div'> {
    /** Key of `theme.colors` or any valid CSS color value @default theme.primaryColor */
    color?: MantineColor;
    /** Controls font-size and padding of all elements @default 'md' */
    size?: MantineSize | (string & {}) | number;
    /** If set, adjusts text color based on background color for `filled` variant */
    autoContrast?: boolean;
    /** Options passed down to `use-scroll-spy` hook */
    scrollSpyOptions?: UseScrollSpyOptions;
    /** Data used to render content until actual values are retrieved from the DOM */
    initialData?: InitialTableOfContentsData[];
    /** A function to pass props down to controls, accepts values from `use-scroll-spy` hook as an argument and active state. */
    getControlProps?: (payload: TableOfContentsGetControlPropsPayload) => UnstyledButtonProps & ElementProps<'button'> & Record<`data-${string}`, any>;
    /** Minimum `depth` value that requires offset, `1` by default */
    minDepthToOffset?: number;
    /** Controls padding on the left side of control, multiplied by (`depth` - `minDepthToOffset`), `20px` by default  */
    depthOffset?: number | string;
    /** Key of `theme.radius` or any valid CSS value to set `border-radius` @default theme.defaultRadius */
    radius?: MantineRadius;
    /** A function to reinitialize headings from `use-scroll-spy` hook */
    reinitializeRef?: React.RefObject<() => void>;
}
export type TableOfContentsFactory = Factory<{
    props: TableOfContentsProps;
    ref: HTMLDivElement;
    stylesNames: TableOfContentsStylesNames;
    vars: TableOfContentsCssVariables;
    variant: TableOfContentsVariant;
}>;
export declare const TableOfContents: import("../..").MantineComponent<{
    props: TableOfContentsProps;
    ref: HTMLDivElement;
    stylesNames: TableOfContentsStylesNames;
    vars: TableOfContentsCssVariables;
    variant: TableOfContentsVariant;
}>;
