export type CssPlan = { assetKey: string; cssFileAbs: string; contents: string; create: boolean; shared: boolean; }; export declare const planCss: (routingText: string, stylesDir: string, pascal: string, kebab: string) => { assetKey: string; contents: string; create: boolean; cssFileAbs: string; shared: true; } | { assetKey: string; contents: string; create: boolean; cssFileAbs: string; shared: false; };