import { Meta, StoryObj } from '@storybook/nextjs';
import { FieldLabel } from '../components/detalhes/FieldLabel';
declare const meta: Meta<typeof FieldLabel>;
export default meta;
type Story = StoryObj<typeof FieldLabel>;
export declare const Base: Story;