import * as tailwindcss_types_config from 'tailwindcss/types/config';

type TemplateWithBreakpoints = Record<"base", string[]> & Record<string, string[]>;
type GridAreasOptions = Record<string, string[] | TemplateWithBreakpoints>;

declare const gridAreas: {
    (options: GridAreasOptions | undefined): {
        handler: tailwindcss_types_config.PluginCreator;
        config?: Partial<tailwindcss_types_config.Config>;
    };
    __isOptionsFunction: true;
};

export { type GridAreasOptions, gridAreas };
